ComponentOne ReportViewer for ASP.NET Web Forms
C1.C1Report.4 Assembly / C1.C1Preview Namespace / UserCellGroup Class / UserCellGroup Constructor / UserCellGroup Constructor(Rectangle[])
The list of rectangular areas to include in the group, each area is identified by a System.Drawing.Rectangle structure as follows:

In This Topic
    UserCellGroup Constructor(Rectangle[])
    In This Topic
    Initializes a new instance of the UserCellGroup class, includes a range of cells identified by a list of rectangular areas, in the group.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal ParamArray ranges() As System.Drawing.Rectangle _
    )
    public UserCellGroup( 
       params System.Drawing.Rectangle[] ranges
    )

    Parameters

    ranges
    The list of rectangular areas to include in the group, each area is identified by a System.Drawing.Rectangle structure as follows:
    • System.Drawing.Rectangle.X is the column index of the top left cell;
    • System.Drawing.Rectangle.Y is the row index of the top left cell;
    • System.Drawing.Rectangle.Width is the number of columns;
    • System.Drawing.Rectangle.X is the number of rows.
    See Also